home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue50
/
IPC
/
Messages
/
MsgSend.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-08-31
|
246 b
|
15 lines
program MsgSend;
uses
Forms,
MsgSendU in 'MsgSendU.pas' {MsgSendForm},
CustomMsgU in 'CustomMsgU.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMsgSendForm, MsgSendForm);
Application.Run;
end.